home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / manual-p / man_db-2.000 / man_db-2 / man_db-2.3.10 / lib / cleanup.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-13  |  245 b   |  12 lines

  1. #ifndef _CLEANUP_H
  2. #define _CLEANUP_H
  3.  
  4. typedef void (*cleanup_fun) (void *);
  5.  
  6. extern void do_cleanups (void);
  7. extern int push_cleanup (cleanup_fun, void *);
  8. extern void pop_cleanup (void);
  9. extern void pop_all_cleanups (void);
  10.  
  11. #endif _CLEANUP_H
  12.